home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-06-27 | 926 b | 40 lines | [TEXT/MPS ] |
- // UMacsBugApplication.h
- // Copyright © 1991-96 by Apple Computer, Inc. All rights reserved.
-
- /*
- Change History:
- ----- R11 -----
- 06/26/96 mdr Install release marker. Scope many globals. Change TRUE/FALSE/NULL.
- ----- R10 -----
- ----- 3.3b1 -----
- */
-
- #ifndef __UMACSBUGAPPLICATION__
- #define __UMACSBUGAPPLICATION__
-
- #ifndef __UAPPLICATION__
- #include "UApplication.h"
- #endif
-
- //----------------------------------------------------------------------------------------
- // TMacsBugApplication
- //----------------------------------------------------------------------------------------
-
- class TMacsBugApplication: public TApplication
- {
- MA_DECLARE_CLASS;
-
- public:
-
- TMacsBugApplication();
- virtual ~TMacsBugApplication();
-
- void IMacsBugApplication();
-
- virtual void DoScriptCommand(CommandNumber aCommand,
- TAppleEvent* message,
- TAppleEvent* reply); // override
- };
-
- #endif // __UMACSBUGAPPLICATION__
-